home *** CD-ROM | disk | FTP | other *** search
- ;*******************************************************************************
- ;* These are functions needed to do minimal video interface in protected mode. *
- ;*******************************************************************************
- ;(C) 1995 American Eagle Publications, Inc., All rights reserved!
-
- ;This procedure displays the null terminated string at DS:SI on the console.
- DISPLAY_MSG:
- mov ax,BIOS_SEL
- mov es,ax
- mov edi,VIDEO_SEG*16
- push edi
- mov ecx,25*80
- mov ax,0F20H
- rep stosw
- pop edi
- DISPLAY_LP: lodsb
- or al,al
- jz SHORT DM_EXIT
- mov ah,0FH
- stosw
- jmp DISPLAY_LP
- DM_EXIT: ret